Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Snyk] Upgrade @sentry/vue from 7.74.1 to 8.13.0 #30

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

snyk-io[bot]
Copy link

@snyk-io snyk-io bot commented Jul 22, 2024

This PR was automatically created by Snyk using the credentials of a real user.


![snyk-top-banner](https://github.com/andygongea/OWASP-Benchmark/assets/818805/c518c423-16fe-447e-b67f-ad5a49b5d123)

Snyk has created this PR to upgrade @sentry/vue from 7.74.1 to 8.13.0.

ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.


⚠️ Warning: This PR contains major version upgrade(s), and may be a breaking change.

  • The recommended version is 91 versions ahead of your current version.

  • The recommended version was released on 25 days ago.

Issues fixed by the recommended upgrade:

Issue Score Exploit Maturity
high severity Cross-site Request Forgery (CSRF)
SNYK-JS-AXIOS-6032459
207 Proof of Concept
high severity Prototype Pollution
SNYK-JS-AXIOS-6144788
207 No Known Exploit
high severity Uncontrolled resource consumption
SNYK-JS-BRACES-6838727
207 Proof of Concept
high severity Improper Input Validation
SNYK-JS-FOLLOWREDIRECTS-6141137
207 Proof of Concept
high severity Inefficient Regular Expression Complexity
SNYK-JS-MICROMATCH-6838728
207 No Known Exploit
high severity Access Control Bypass
SNYK-JS-VITE-6182924
207 Proof of Concept
medium severity Improper Access Control
SNYK-JS-VITE-6531286
207 Proof of Concept
medium severity Regular Expression Denial of Service (ReDoS)
SNYK-JS-AXIOS-6124857
207 Proof of Concept
medium severity Template Injection
SNYK-JS-DOMPURIFY-6474511
207 Proof of Concept
medium severity Information Exposure
SNYK-JS-FOLLOWREDIRECTS-6444610
207 Proof of Concept
medium severity Cross-Site Scripting (XSS)
SNYK-JS-VITE-6098386
207 Proof of Concept
Release notes
Package name: @sentry/vue
  • 8.13.0 - 2024-06-27

    Important Changes

    • feat(nestjs): Add Nest SDK This release adds a dedicated SDK for NestJS (@ sentry/nestjs)
      in alpha state. The SDK is a drop-in replacement for the Sentry Node SDK (@ sentry/node) supporting the same set of
      features. See the docs for how to use the SDK.

    Other Changes

    • deps: Bump bundler plugins to 2.20.1 (#12641)
    • deps(nextjs): Remove react peer dep and allow rc (#12670)
    • feat: Update OTEL deps (#12635)
    • feat(deps): bump @ prisma/instrumentation from 5.15.0 to 5.15.1 (#12627)
    • feat(node): Add context info for missing instrumentation (#12639)
    • fix(feedback): Improve feedback error message (#12647)

    Bundle size 📦

    Path Size
    @ sentry/browser 22.22 KB
    @ sentry/browser (incl. Tracing) 33.31 KB
    @ sentry/browser (incl. Tracing, Replay) 69.09 KB
    @ sentry/browser (incl. Tracing, Replay) - with treeshaking flags 62.42 KB
    @ sentry/browser (incl. Tracing, Replay with Canvas) 73.15 KB
    @ sentry/browser (incl. Tracing, Replay, Feedback) 85.75 KB
    @ sentry/browser (incl. Tracing, Replay, Feedback, metrics) 87.61 KB
    @ sentry/browser (incl. metrics) 26.5 KB
    @ sentry/browser (incl. Feedback) 38.86 KB
    @ sentry/browser (incl. sendFeedback) 26.84 KB
    @ sentry/browser (incl. FeedbackAsync) 31.45 KB
    @ sentry/react 24.97 KB
    @ sentry/react (incl. Tracing) 36.36 KB
    @ sentry/vue 26.33 KB
    @ sentry/vue (incl. Tracing) 35.17 KB
    @ sentry/svelte 22.36 KB
    CDN Bundle 23.42 KB
    CDN Bundle (incl. Tracing) 35.05 KB
    CDN Bundle (incl. Tracing, Replay) 69.18 KB
    CDN Bundle (incl. Tracing, Replay, Feedback) 74.38 KB
    CDN Bundle - uncompressed 68.8 KB
    CDN Bundle (incl. Tracing) - uncompressed 103.66 KB
    CDN Bundle (incl. Tracing, Replay) - uncompressed 214.13 KB
    CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 226.84 KB
    @ sentry/nextjs (client) 36.24 KB
    @ sentry/sveltekit (client) 33.95 KB
    @ sentry/node 130.61 KB
    @ sentry/node - without tracing 91.63 KB
    @ sentry/aws-serverless 116.8 KB
  • 8.12.0 - 2024-06-25

    Important Changes

    • feat(solid): Remove need to pass router hooks to solid integration (breaking)

    This release introduces breaking changes to the @ sentry/solid package (which is currently out in alpha).

    We've made it easier to get started with the solid router integration by removing the need to pass use* hooks
    explicitly to solidRouterBrowserTracingIntegration. Import solidRouterBrowserTracingIntegration from
    @ sentry/solid/solidrouter and add it to Sentry.init

    import * as Sentry from '@ sentry/solid';
    import { solidRouterBrowserTracingIntegration, withSentryRouterRouting } from '@ sentry/solid/solidrouter';
    import { Router } from '@ solidjs/router';

    Sentry.init({
    dsn: 'PUBLIC_DSN',
    integrations: [solidRouterBrowserTracingIntegration()],
    tracesSampleRate: 1.0, // Capture 100% of the transactions
    });

    const SentryRouter = withSentryRouterRouting(Router);

    • feat(core): Return client from init method (#12585)

    Sentry.init() now returns a client directly, so you don't need to explicitly call getClient() anymore:

    const client = Sentry.init();
    • feat(nextjs): Add deleteSourcemapsAfterUpload option (#12457)

    This adds an easy way to delete sourcemaps immediately after uploading them:

    module.exports = withSentryConfig(nextConfig, {
      sourcemaps: {
        deleteSourcemapsAfterUpload: true,
      },
    });
    • feat(node): Allow to configure maxSpanWaitDuration (#12610)

    Adds configuration option for the max. duration in seconds that the SDK will wait for parent spans to be finished before
    discarding a span. The SDK will automatically clean up spans that have no finished parent after this duration. This is
    necessary to prevent memory leaks in case of parent spans that are never finished or otherwise dropped/missing. However,
    if you have very long-running spans in your application, a shorter duration might cause spans to be discarded too early.
    In this case, you can increase this duration to a value that fits your expected data.

    Other Changes

    • feat(feedback): Extra check for iPad in screenshot support (#12593)
    • fix(bundle): Ensure CDN bundles do not overwrite window.Sentry (#12580)
    • fix(feedback): Inject preact from feedbackModal into feedbackScreenshot integration (#12535)
    • fix(node): Re-throw errors from koa middleware (#12609)
    • fix(remix): Mark isRemixV2 as optional in exposed types. (#12614)
    • ref(node): Add error message to NodeFetch log (#12612)

    Work in this release was contributed by @ n4bb12. Thank you for your contribution!

    Bundle size 📦

    Path Size
    @ sentry/browser 22.22 KB
    @ sentry/browser (incl. Tracing) 33.31 KB
    @ sentry/browser (incl. Tracing, Replay) 69.09 KB
    @ sentry/browser (incl. Tracing, Replay) - with treeshaking flags 62.42 KB
    @ sentry/browser (incl. Tracing, Replay with Canvas) 73.15 KB
    @ sentry/browser (incl. Tracing, Replay, Feedback) 85.76 KB
    @ sentry/browser (incl. Tracing, Replay, Feedback, metrics) 87.62 KB
    @ sentry/browser (incl. metrics) 26.5 KB
    @ sentry/browser (incl. Feedback) 38.87 KB
    @ sentry/browser (incl. sendFeedback) 26.85 KB
    @ sentry/browser (incl. FeedbackAsync) 31.45 KB
    @ sentry/react 24.97 KB
    @ sentry/react (incl. Tracing) 36.36 KB
    @ sentry/vue 26.33 KB
    @ sentry/vue (incl. Tracing) 35.17 KB
    @ sentry/svelte 22.36 KB
    CDN Bundle 23.42 KB
    CDN Bundle (incl. Tracing) 35.05 KB
    CDN Bundle (incl. Tracing, Replay) 69.18 KB
    CDN Bundle (incl. Tracing, Replay, Feedback) 74.38 KB
    CDN Bundle - uncompressed 68.8 KB
    CDN Bundle (incl. Tracing) - uncompressed 103.66 KB
    CDN Bundle (incl. Tracing, Replay) - uncompressed 214.13 KB
    CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 226.79 KB
    @ sentry/nextjs (client) 36.24 KB
    @ sentry/sveltekit (client) 33.95 KB
    @ sentry/node 113.27 KB
    @ sentry/node - without tracing 90.65 KB
    @ sentry/aws-serverless 99.74 KB
  • 8.12.0-beta.0 - 2024-06-24

    This pre-release includes an rrweb version bump that
    includes quite a few upstream changes. We will test this on Sentry before a release.

    Bundle size 📦

    Path Size
    @ sentry/browser 22.23 KB
    @ sentry/browser (incl. Tracing) 33.32 KB
    @ sentry/browser (incl. Tracing, Replay) 69.4 KB
    @ sentry/browser (incl. Tracing, Replay) - with treeshaking flags 62.7 KB
    @ sentry/browser (incl. Tracing, Replay with Canvas) 73.8 KB
    @ sentry/browser (incl. Tracing, Replay, Feedback) 85.67 KB
    @ sentry/browser (incl. Tracing, Replay, Feedback, metrics) 87.55 KB
    @ sentry/browser (incl. metrics) 26.51 KB
    @ sentry/browser (incl. Feedback) 38.46 KB
    @ sentry/browser (incl. sendFeedback) 26.86 KB
    @ sentry/browser (incl. FeedbackAsync) 31.46 KB
    @ sentry/react 24.97 KB
    @ sentry/react (incl. Tracing) 36.37 KB
    @ sentry/vue 26.33 KB
    @ sentry/vue (incl. Tracing) 35.17 KB
    @ sentry/svelte 22.36 KB
    CDN Bundle 23.43 KB
    CDN Bundle (incl. Tracing) 35.06 KB
    CDN Bundle (incl. Tracing, Replay) 69.48 KB
    CDN Bundle (incl. Tracing, Replay, Feedback) 74.74 KB
    CDN Bundle - uncompressed 68.81 KB
    CDN Bundle (incl. Tracing) - uncompressed 103.66 KB
    CDN Bundle (incl. Tracing, Replay) - uncompressed 215.52 KB
    CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 228.18 KB
    @ sentry/nextjs (client) 36.24 KB
    @ sentry/sveltekit (client) 33.96 KB
    @ sentry/node 113.27 KB
    @ sentry/node - without tracing 90.67 KB
    @ sentry/aws-serverless 99.76 KB
  • 8.11.0 - 2024-06-21

    Important Changes

    • feat(core): Add parentSpan option to startSpan* APIs (#12567)

    We've made it easier to create a span as a child of a specific span via the startSpan* APIs. This should allow you to
    explicitly manage the parent-child relationship of your spans better.

    Sentry.startSpan({ name: 'root' }, parent => {
    const span = Sentry.startInactiveSpan({ name: 'xxx', parentSpan: parent });

    Sentry.startSpan({ name: 'xxx', parentSpan: parent }, () => {});

    Sentry.startSpanManual({ name: 'xxx', parentSpan: parent }, () => {});
    });

    Other Changes

    • feat(node): Detect release from more providers (#12529)
    • fix(profiling-node): Use correct getGlobalScope import (#12564)
    • fix(profiling-node) sample timestamps need to be in seconds (#12563)
    • ref: Align @ sentry/node exports from framework SDKs. (#12589)

    Bundle size 📦

    Path Size
    @ sentry/browser 22.22 KB
    @ sentry/browser (incl. Tracing) 33.31 KB
    @ sentry/browser (incl. Tracing, Replay) 69.09 KB
    @ sentry/browser (incl. Tracing, Replay) - with treeshaking flags 62.41 KB
    @ sentry/browser (incl. Tracing, Replay with Canvas) 73.14 KB
    @ sentry/browser (incl. Tracing, Replay, Feedback) 85.31 KB
    @ sentry/browser (incl. Tracing, Replay, Feedback, metrics) 87.17 KB
    @ sentry/browser (incl. metrics) 26.5 KB
    @ sentry/browser (incl. Feedback) 38.42 KB
    @ sentry/browser (incl. sendFeedback) 26.85 KB
    @ sentry/browser (incl. FeedbackAsync) 31.42 KB
    @ sentry/react 24.96 KB
    @ sentry/react (incl. Tracing) 36.35 KB
    @ sentry/vue 26.32 KB
    @ sentry/vue (incl. Tracing) 35.16 KB
    @ sentry/svelte 22.35 KB
    CDN Bundle 23.41 KB
    CDN Bundle (incl. Tracing) 35.04 KB
    CDN Bundle (incl. Tracing, Replay) 69.17 KB
    CDN Bundle (incl. Tracing, Replay, Feedback) 74.34 KB
    CDN Bundle - uncompressed 68.76 KB
    CDN Bundle (incl. Tracing) - uncompressed 103.61 KB
    CDN Bundle (incl. Tracing, Replay) - uncompressed 214.08 KB
    CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 226.67 KB
    @ sentry/nextjs (client) 36.23 KB
    @ sentry/sveltekit (client) 33.95 KB
    @ sentry/node 112.99 KB
    @ sentry/node - without tracing 90.4 KB
    @ sentry/aws-serverless 99.48 KB
  • 8.10.0 - 2024-06-19
  • 8.9.2 - 2024-06-12
  • 8.9.1 - 2024-06-11
  • 8.8.0 - 2024-06-07
  • 8.7.0 - 2024-05-29
  • 8.6.0 - 2024-05-29
  • 8.5.0 - 2024-05-27
  • 8.4.0 - 2024-05-23
  • 8.3.0 - 2024-05-22
  • 8.2.1 - 2024-05-16
  • 8.2.0 - 2024-05-16
  • 8.1.0 - 2024-05-16
  • 8.0.0 - 2024-05-13
  • 8.0.0-rc.3 - 2024-05-10
  • 8.0.0-rc.2 - 2024-05-08
  • 8.0.0-rc.1 - 2024-05-07
  • 8.0.0-rc.0 - 2024-05-06
  • 8.0.0-beta.6 - 2024-05-03
  • 8.0.0-beta.5 - 2024-04-30
  • 8.0.0-beta.4 - 2024-04-24
  • 8.0.0-beta.3 - 2024-04-19
  • 8.0.0-beta.2 - 2024-04-17
  • 8.0.0-beta.1 - 2024-04-15
  • 8.0.0-alpha.9 - 2024-04-08
  • 8.0.0-alpha.8 - 2024-04-08
  • 8.0.0-alpha.7 - 2024-03-27
  • 8.0.0-alpha.5 - 2024-03-22
  • 8.0.0-alpha.4 - 2024-03-14
  • 8.0.0-alpha.3 - 2024-03-14
  • 8.0.0-alpha.2 - 2024-03-05
  • 7.118.0 - 2024-06-21
  • 7.117.0 - 2024-06-10
  • 7.116.0 - 2024-05-17
  • 7.115.0 - 2024-05-16
  • 7.114.0 - 2024-05-08
  • 7.113.0 - 2024-05-02
  • 7.112.2 - 2024-04-24
  • 7.112.1 - 2024-04-23
  • 7.112.0 - 2024-04-23
  • 7.111.0 - 2024-04-18
  • 7.110.1 - 2024-04-15
  • 7.110.0 - 2024-04-11
  • 7.109.0 - 2024-03-28
  • 7.108.0 - 2024-03-22
  • 7.107.0 - 2024-03-14
  • 7.106.1 - 2024-03-11
  • 7.106.0 - 2024-03-08
  • 7.105.0 - 2024-03-04
  • 7.104.0 - 2024-02-29
  • 7.103.0 - 2024-02-27
  • 7.102.1 - 2024-02-22
  • 7.102.0 - 2024-02-20
  • 7.101.1 - 2024-02-15
  • 7.101.0 - 2024-02-13
  • 7.100.1 - 2024-02-07
  • 7.100.0 - 2024-02-06
  • 7.99.0 - 2024-01-30
  • 7.98.0 - 2024-01-25
  • 7.97.0 - 2024-01-25
  • 7.95.0 - 2024-01-23
  • 7.94.1 - 2024-01-19
  • 7.93.0 - 2024-01-10
  • 7.92.0 - 2024-01-04
  • 7.91.0 - 2023-12-22
  • 7.90.0 - 2023-12-20
  • 7.89.0 - 2023-12-19
  • 7.88.0 - 2023-12-14
  • 7.87.0 - 2023-12-13
  • 7.86.0 - 2023-12-07
  • 7.85.0 - 2023-12-04
  • 7.84.0 - 2023-11-30
  • 7.83.0 - 2023-11-28
  • 7.82.0 - 2023-11-27
  • 7.81.1 - 2023-11-21
  • 7.81.0 - 2023-11-20
  • 7.80.2-alpha.1 - 2023-11-15
  • 7.80.2-alpha.0 - 2023-11-14
  • 7.80.1 - 2023-11-14
  • 7.80.0 - 2023-11-09
  • 7.79.0 - 2023-11-08
  • 7.78.0 - 2023-11-08
  • 7.77.0 - 2023-10-31
  • 7.76.0 - 2023-10-27
  • 7.75.1 - 2023-10-25
  • 7.75.0 - 2023-10-24
  • 7.74.2-alpha.1 - 2023-10-23
  • 7.74.2-alpha.0 - 2023-10-19
  • 7.74.1 - 2023-10-17
from @sentry/vue GitHub release notes

Important

  • Warning: This PR contains a major version upgrade, and may be a breaking change.
  • Check the changes in this PR to ensure they won't cause issues with your project.
  • This PR was automatically created by Snyk using the credentials of a real user.
  • Max score is 1000. Note that the real score may have changed since the PR was raised.

Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

For more information:

Snyk has created this PR to upgrade @sentry/vue from 7.74.1 to 8.13.0.

See this package in npm:
@sentry/vue

See this project in Snyk:
https://app.snyk.io/org/cachiman/project/8ac88545-a113-4dfa-95c6-03bb1642e649?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr
Copy link

google-cla bot commented Jul 22, 2024

Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).

View this failed invocation of the CLA check for more information.

For the most up to date status, view the checks section at the bottom of the pull request.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants